home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / setpriority.c,v < prev    next >
Text File  |  1988-07-29  |  1KB  |  82 lines

  1. head     1.2;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.2
  9. date     88.07.29.17.40.52;  author ouster;  state Exp;
  10. branches ;
  11. next     1.1;
  12.  
  13. 1.1
  14. date     88.06.19.14.31.58;  author ouster;  state Exp;
  15. branches ;
  16. next     ;
  17.  
  18.  
  19. desc
  20. @@
  21.  
  22.  
  23. 1.2
  24. log
  25. @Lint.
  26. @
  27. text
  28. @/* 
  29.  * setpriority.c --
  30.  *
  31.  *    Procedure to map from Unix setpriority system call to Sprite.
  32.  *
  33.  * Copyright (C) 1986 Regents of the University of California
  34.  * All rights reserved.
  35.  */
  36.  
  37. #ifndef lint
  38. static char rcsid[] = "$Header: setpriority.c,v 1.1 88/06/19 14:31:58 ouster Exp $ SPRITE (Berkeley)";
  39. #endif not lint
  40.  
  41. #include "sprite.h"
  42. #include "compatInt.h"
  43.  
  44.  
  45. /*
  46.  *----------------------------------------------------------------------
  47.  *
  48.  * setpriority --
  49.  *
  50.  *    Procedure to map from Unix setpriority system call to Sprite 
  51.  *    Proc_SetPriority. 
  52.  *
  53.  * Results:
  54.  *    Always return success for now.
  55.  *
  56.  * Side effects:
  57.  *    None.
  58.  *
  59.  *----------------------------------------------------------------------
  60.  */
  61.  
  62.     /* ARGSUSED */
  63. int
  64. setpriority(which, who, prio)
  65.     int    which, who, prio;
  66. {
  67.     return(UNIX_SUCCESS);
  68. }
  69. @
  70.  
  71.  
  72. 1.1
  73. log
  74. @Initial revision
  75. @
  76. text
  77. @d11 1
  78. a11 1
  79. static char rcsid[] = "$Header: open.c,v 1.3 86/04/17 21:58:32 andrew Exp $ SPRITE (Berkeley)";
  80. d35 1
  81. @
  82.